Beta: Get datasource status Beta

Gather information about the datasource's overall status. Currently in beta, might undergo breaking changes without prior notice.

Tip: Refer to the Troubleshooting tutorial for more information.

SecurityBearerAuth
Request
path Parameters
datasource
required
string

The datasource to get debug status for.

Responses
200

OK

Response Schema: application/json; charset=UTF-8
object
object
datasourceVisibility
string

The visibility of the datasource, an enum of VISIBLE_TO_ALL, VISIBLE_TO_TEST_GROUP, NOT_VISIBLE

Enum: "ENABLED_FOR_ALL" "ENABLED_FOR_TEST_GROUP" "NOT_ENABLED"
400

Bad Request

401

Not Authorized

post/debug/{datasource}/status
Request samples
Response samples
application/json; charset=UTF-8
{
  • "documents": {
    • "bulkUploadHistory": [
      • {
        • "uploadId": "upload-id-content-1707403081",
        • "startTime": "2021-08-06T17:58:01.000Z",
        • "endTime": "2021-08-06T18:58:01.000Z",
        • "status": "SUCCESSFUL",
        • "processingState": "UPLOAD COMPLETED"
        }
      ],
    • "counts": {
      • "uploaded": [
        • {
          • "objectType": "Article",
          • "count": 15
          }
        ],
      • "indexed": [
        • {
          • "objectType": "Article",
          • "count": 15
          }
        ]
      },
    • "processingHistory": [
      • {
        • "startTime": "2021-08-06T17:58:01.000Z",
        • "endTime": "2021-08-06T18:58:01.000Z"
        }
      ]
    },
  • "identity": {
    • "processingHistory": [
      • {
        • "startTime": "2021-08-06T17:58:01.000Z",
        • "endTime": "2021-08-06T18:58:01.000Z"
        }
      ],
    • "users": {
      • "bulkUploadHistory": [
        • {
          • "uploadId": "upload-id-content-1707403081",
          • "startTime": "2021-08-06T17:58:01.000Z",
          • "endTime": "2021-08-06T18:58:01.000Z",
          • "status": "SUCCESSFUL",
          • "processingState": "UPLOAD COMPLETED"
          }
        ],
      • "counts": {
        • "uploaded": 15
        }
      },
    • "groups": {
      • "bulkUploadHistory": [
        • {
          • "uploadId": "upload-id-content-1707403081",
          • "startTime": "2021-08-06T17:58:01.000Z",
          • "endTime": "2021-08-06T18:58:01.000Z",
          • "status": "SUCCESSFUL",
          • "processingState": "UPLOAD COMPLETED"
          }
        ],
      • "counts": {
        • "uploaded": 15
        }
      },
    • "memberships": {
      • "bulkUploadHistory": [
        • {
          • "uploadId": "upload-id-content-1707403081",
          • "startTime": "2021-08-06T17:58:01.000Z",
          • "endTime": "2021-08-06T18:58:01.000Z",
          • "status": "SUCCESSFUL",
          • "processingState": "UPLOAD COMPLETED"
          }
        ],
      • "counts": {
        • "uploaded": 15
        }
      }
    },
  • "datasourceVisibility": "ENABLED_FOR_ALL"
}